home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue27 / tiptrix / Dbrestr / AddU.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1997-04-28  |  605 b   |  37 lines

  1. unit Addu;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, Buttons, ExtCtrls, Menus, StdCtrls;
  8.  
  9. type
  10.   TAddF = class(TForm)
  11.     Label1: TLabel;
  12.     Edit1: TEdit;
  13.     BitBtn1: TBitBtn;
  14.     BitBtn2: TBitBtn;
  15.     ComboBox1: TComboBox;
  16.     Label2: TLabel;
  17.     procedure FormCreate(Sender: TObject);
  18.   private
  19.     { Private declarations }
  20.   public
  21.     { Public declarations }
  22.   end;
  23.  
  24. var
  25.   AddF: TAddF;
  26.  
  27. implementation
  28.  
  29. {$R *.DFM}
  30.  
  31. procedure TAddF.FormCreate(Sender: TObject);
  32. begin
  33.   AutoScroll := True;
  34. end;
  35.  
  36. end.
  37.